home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-09-08 | 290 b | 12 lines |
- class ExecDemo {
- public static void main(String args[]) {
- Runtime r = Runtime. getRuntime();
- Process p = null;
- String cmd[] = { "notepad", "/java/src/java/lang/Runtime.java" };
- try {
- p = r.exec(cmd);
- } catch (Exception e) {
- System.out.println("error executing " + cmd[0]);
- }
- } }
-